home *** CD-ROM | disk | FTP | other *** search
/ Apple Developer Connection Student Program / ADC Tools Sampler CD Disk 3 1999.iso / Metrowerks CodeWarrior / Java Support / Java_Source / IFC_112 / netscape / util / ExternalCoder.java < prev    next >
Encoding:
Text File  |  1999-05-28  |  674 b   |  18 lines  |  [TEXT/CWIE]

  1. // ExternalCoder.java
  2. // By Ned Etcode
  3. // Copyright 1995, 1996, 1997 Netscape Communications Corp.  All rights reserved.
  4.  
  5. package netscape.util;
  6.  
  7. /** This may one day be public, but for now it is just the mechanism by
  8.   * which we encode/decode primitive types.
  9.   * @private
  10.   */
  11. interface ExternalCoder {
  12.     public Object newInstance(String className) throws CodingException;
  13.     public void describeClassInfo(Object object, ClassInfo info);
  14.     public void encode(Object object, Encoder encoder) throws CodingException;
  15.     public void decode(Object object, Decoder decoder) throws CodingException;
  16.     public void finishDecoding(Object object) throws CodingException;
  17. }
  18.